home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / games / abyss.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-09-28  |  1KB  |  37 lines

  1. @echo off >nul
  2. echo off >nul
  3. cls >nul
  4. if !%1! == !! goto usage
  5. set AbyssSource=b
  6. if not !%2!  == !! set AbyssSource=%2
  7. if not !%3!  == !! set AbyssDir=%3
  8. if !%3!  == !! set AbyssDir=root directory
  9. echo Installing Rooms of the Abyss on drive %1:. >con
  10. echo Source drive is %AbyssSource%:. >con
  11. echo Destination directory is %AbyssDir%. >con
  12. echo Press any key to continue, or CTRL-BREAK to abort. >con
  13. pause <con >nul
  14. %1:
  15. cd\
  16. md %3 >nul
  17. cd %3 >nul
  18. copy %AbyssSource%:*.* >nul
  19. goto finished
  20.  
  21. :Finished
  22. echo Rooms of the Abyss has been installed.>con
  23. echo To play, type in ROOMS [ENTER].
  24. goto end
  25.  
  26. :usage
  27. echo To install Rooms of the Abyss on your hard disk, type >con
  28. echo INSTALL drive1 drive2 [DIRECTORY] 
  29. echo where drive1 is the hard disk letter on which you want to >con
  30. echo install, drive2 is the source (floppy) drive, and DIRECTORY >con
  31. echo is the name of the directory you wish to install into.
  32. echo DIRECTORY is optional and will default to the root directory.
  33. echo Do not put a colon after the drive letters. >con
  34. echo  >con
  35. echo Rooms of the Abyss requires 313,924 bytes of hard disk space.
  36.  
  37. :end